home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / u / utility / cpx / gemsound / source / sounds.h < prev   
Encoding:
C/C++ Source or Header  |  1996-11-17  |  633 b   |  42 lines

  1. /*  SOUNDS.H
  2.  *
  3.  *  aus: GEM Sound
  4.  *       TOS Magazin
  5.  *
  6.  *  (c)1992 by Richard Kurz
  7.  *  Vogelherdbogen 62
  8.  *  7992 Tettnang
  9.  *  Fido 2:241/7232
  10.  *
  11.  *  Erstellt mit Pure C
  12.  */
  13.  
  14. #define TRUE 1
  15. #define FALSE 0
  16.  
  17. #define MAX_SAMP 20
  18.  
  19. typedef struct
  20. {
  21.     char name[15];
  22.     long laenge;
  23.     long *anfang;
  24. } SINF;
  25.  
  26. typedef struct
  27. {
  28.     int fix;
  29.     int r_flag;
  30.     int ruhe;
  31.     int max_sound;
  32.     void (*play)(SINF *sound, int super);
  33.     long (*set_vec)(void);
  34.     struct
  35.     {
  36.         int nr;
  37.         int sound;
  38.         int an;
  39.     } gem_inf[MAX_SAMP];
  40.     SINF sounds[MAX_SAMP];
  41. } C_SOUNDS;
  42.